home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 2
/
Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso
/
Aminet
/
util
/
gnu
/
emacs_src.lha
/
emacs-18.58
/
lisp
/
tex-start.el
< prev
next >
Wrap
Lisp/Scheme
|
1992-02-21
|
467b
|
12 lines
; This file is for use by TeX82 (see man page) to allow switching to
; Emacs at a line number given on the command line
; It assumes that it has been called by:
; emacs -l tex-start -e startline <linenumber> <file>
(defun startline ()
;(setq command-line-args (cdr command-line-args))
(find-file (car (cdr command-line-args-left)))
(goto-char (point-min))
(forward-line (1- (string-to-int (car command-line-args-left))))
(setq command-line-args-left ()))